home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 356 b | 18 lines | [TEXT/CWIE] |
- // ListOf.cp
-
- #ifndef ListOf_h
- #include "ListOf.h"
- #endif
-
- template < class Target >
- const ListLink<Target> *ListOf<Target>::DownCast( const ListNode *n )
- {
- return static_cast< const ListLink<Target>* >( n );
- }
-
- template < class Target >
- ListLink<Target> *ListOf<Target>::DownCast( ListNode *n )
- {
- return static_cast< ListLink<Target>* >( n );
- }
-